home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / HyperCuber 2.0 Source / CEditKeyControlsDirector.h < prev    next >
Encoding:
Text File  |  1994-04-05  |  656 b   |  24 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CEditKeyControlsDirector class.  The
  3. //| CEditKeyControlsDirector class supervises the dialog which is used to edit
  4. //| key controls.
  5. //|________________________________________________________________________________
  6.  
  7. #pragma once
  8.  
  9. #include "Keys.h"
  10.  
  11. #include <CDialogDirector.h>
  12.  
  13. class CEditKeyControlsDirector : public CDialogDirector
  14.     {
  15.  
  16.     key_control_struct *theKey;        //  The key command edited
  17.     
  18.   public:
  19.  
  20.     void    IEditKeyControlsDirector (CDirectorOwner *aSupervisor, key_control_struct *key);
  21.     void    TalkToUser(void);
  22.  
  23.     };
  24.